e9b8cdd2df8146933e53726c2f368443f34407c7,src/jfs/conf/JFSConfigXML.java,JFSConfigXML,loadProfile,#File#,49

Before Change


                attr = root.getAttributeNode("keepuseractions");

                if (attr!=null) {
                    setKeepUserActions(Boolean.parseBoolean(attr.getValue()));
                }

                attr = root.getAttributeNode("storehistory");

After Change


                attr = root.getAttributeNode("keepuseractions");

                if (attr!=null) {
                    setKeepUserActions(Boolean.valueOf(attr.getValue()).booleanValue());
                }

                attr = root.getAttributeNode("storehistory");